meson: demos: disable add_install_script() calls that don't work right yet
authorTim-Philipp Müller <tim@centricular.com>
Sun, 19 Mar 2017 14:22:33 +0000 (14:22 +0000)
committerEmmanuele Bassi <ebassi@gnome.org>
Wed, 3 May 2017 14:10:53 +0000 (15:10 +0100)
Errors out. Might really wants a script and not a binary.

demos/gtk-demo/meson.build
demos/widget-factory/meson.build

index dafafe31b9d0879908d40815f0937d19ad40973c..b6dcb5aff291d715497456ec827d72bd06894339 100644 (file)
@@ -124,10 +124,11 @@ endforeach
 # TODO: uninstall script, once we have an uninstall target (Meson issue)
 # TODO: should we be able to pass a locally-built exe here? (Meson issue)
 if not meson.is_cross_build() or meson.has_exe_wrapper()
-  meson.add_install_script(gtk_update_icon_cache.full_path(),
-    '--ignore-theme-index',
-    '--force',
-    icontheme_dir)
+  # FIXME: this errors out, probably needs to be done differently or with wrapper script
+  #meson.add_install_script(gtk_update_icon_cache.full_path(),
+  #  '--ignore-theme-index',
+  #  '--force',
+  #  icontheme_dir)
 endif
 
 # desktop file
index ab1f26a6c2d210aaed413e282a59f07cca0f4549..7200eba10b0f14167c8cae67d624b9e7a43245c1 100644 (file)
@@ -30,8 +30,9 @@ foreach icon_size : ['16x16', '22x22', '24x24', '32x32', '48x48', '256x256']
 endforeach
 
 if not meson.is_cross_build() or meson.has_exe_wrapper()
-  meson.add_install_script(gtk_update_icon_cache.full_path(),
-    '--ignore-theme-index',
-    '--force',
-    icontheme_dir)
+  # FIXME: this errors out, probably needs to be done differently or with wrapper script
+  #meson.add_install_script(gtk_update_icon_cache.full_path(),
+  #  '--ignore-theme-index',
+  #  '--force',
+  # icontheme_dir)
 endif